【例子介绍】飞机大战
【相关图片】
【源码结构】
.
├── js-飞机大战.rar
└── 飞机
├── App.vue
├── README.md
├── index.html
├── main.js
├── manifest.json
├── node_modules
├── package.json
├── pages
│ └── index
│ └── index.vue
├── pages.json
├── static
│ ├── background_1.png
│ ├── blast.gif
│ ├── bullet1.png
│ ├── enemy1_fly_1.png
│ ├── enemy2_fly_1.png
│ ├── enemy3_fly_1.png
│ ├── logo.png
│ ├── meblast.gif
│ └── myplane.gif
├── uni.scss
└── unpackage
├── dist
│ └── build
│ └── app-plus
│ ├── __uniappautomator.js
│ ├── __uniappchooselocation.js
│ ├── __uniapperror.png
│ ├── __uniappopenlocation.js
│ ├── __uniapppicker.js
│ ├── __uniappquill.js
│ ├── __uniappquillimageresize.js
│ ├── __uniappscan.js
│ ├── __uniappsuccess.png
│ ├── __uniappview.html
│ ├── app-config-service.js
│ ├── app-config.js
│ ├── app-service.js
│ ├── app.css
│ ├── manifest.json
│ ├── pages
│ │ └── index
│ │ └── index.css
│ ├── static
│ │ ├── background_1.png
│ │ ├── blast.gif
│ │ ├── bullet1.png
│ │ ├── enemy1_fly_1.png
│ │ ├── enemy2_fly_1.png
│ │ ├── enemy3_fly_1.png
│ │ ├── logo.png
│ │ ├── meblast.gif
│ │ └── myplane.gif
│ └── uni-app-view.umd.js
└── resources
├── __UNI__3BEE26E
│ └── www
│ ├── __uniappautomator.js
│ ├── __uniappchooselocation.js
│ ├── __uniapperror.png
│ ├── __uniappopenlocation.js
│ ├── __uniapppicker.js
│ ├── __uniappquill.js
│ ├── __uniappquillimageresize.js
│ ├── __uniappscan.js
│ ├── __uniappsuccess.png
│ ├── __uniappview.html
│ ├── app-config-service.js
│ ├── app-config.js
│ ├── app-service.js
│ ├── app.css
│ ├── manifest.json
│ ├── pages
│ │ └── index
│ │ └── index.css
│ ├── static
│ │ ├── background_1.png
│ │ ├── blast.gif
│ │ ├── bullet1.png
│ │ ├── enemy1_fly_1.png
│ │ ├── enemy2_fly_1.png
│ │ ├── enemy3_fly_1.png
│ │ ├── logo.png
│ │ ├── meblast.gif
│ │ └── myplane.gif
│ └── uni-app-view.umd.js
└── __UNI__3BEE26E.rar
18 directories, 72 files
评论